* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
  }
  
  body {
    background-color: #f4f4f4;
    color: #222;
  }
  
  .main-header {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1000;
  }
  
  .logo {
    width: 150px;
    opacity: 0.95;
  }

  .main-header {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .home-icon-link {
    color: rgb(0, 0, 0);
    font-size: 26px;
    transition: color 0.3s ease;
    text-decoration: none;
  }
  
  .home-icon-link:hover {
    color: #ffcc00;
  }
  
  
  .hero-image {
    background: url('images/home duties.jpg') no-repeat center center/cover;
    height: 400px;
    position: relative;
  }
  
  .hero-image::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, #f4f4f4 100%);
  }
  
  .booking-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 60px 20px 40px;
    justify-content: center;
    align-items: flex-start;
    max-width: 1200px;
    margin: auto;
  }
  
  .form-section, .info-wrapper {
    flex: 1 1 450px;
  }
  
  form {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  }
  
  form h2 {
    margin-bottom: 20px;
    font-size: 1.6em;
    color: #0077cc;
  }
  
  form label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
  }
  
  form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 8px;
  }
  
  form textarea {
    resize: vertical;
  }
  
  form button {
    margin-top: 20px;
    background-color: #0077cc;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 1em;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  form button:hover {
    background-color: #005fa3;
  }
  
  .info-wrapper section {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    margin-bottom: 20px;
  }
  
  .info-wrapper h2 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #333;
  }
  
  .testimonial {
    margin-top: 15px;
    padding-left: 20px;
    border-left: 3px solid #0077cc;
  }
  
  .testimonial i {
    font-size: 1.5em;
    color: #0077cc;
    margin-right: 10px;
  }




  .whatsapp-link {
    color: #25D366;
    text-decoration: none;
    font-weight: bold;
  }
  
  .whatsapp-link:hover {
    text-decoration: underline;
    color: #1ebe5b;
  }
  
  

  
 /* Footer Section */
.site-footer {
  background-color: #062177;
  color: #fff;
  padding: 10px 20px 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.footer-brand img {
  max-width: 120px;
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-contact p {
  margin: 6px 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  font-size: 0.9rem;
}
